home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Editorial / Programming with Delphi 2005 / Delphi 2005 1 / EXPLORER / EXLORER.DPR < prev    next >
Encoding:
Text File  |  2005-02-23  |  183 b   |  14 lines

  1. program exlorer;
  2.  
  3. uses
  4.   Forms,
  5.   exp in 'exp.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.